-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
layers: Add 01912, 01913 #5277
layers: Add 01912, 01913 #5277
Conversation
CI Vulkan-ValidationLayers build queued with queue ID 19975. |
CI Vulkan-ValidationLayers build # 10672 running. |
CI Vulkan-ValidationLayers build # 10672 aborted. |
850587c
to
49ed730
Compare
CI Vulkan-ValidationLayers build queued with queue ID 20239. |
CI Vulkan-ValidationLayers build # 10681 running. |
CI Vulkan-ValidationLayers build # 10681 failed. |
49ed730
to
d463606
Compare
CI Vulkan-ValidationLayers build queued with queue ID 20749. |
CI Vulkan-ValidationLayers build # 10705 running. |
CI Vulkan-ValidationLayers build # 10705 failed. |
CI Vulkan-ValidationLayers build queued with queue ID 21795. |
CI Vulkan-ValidationLayers build # 10741 running. |
CI Vulkan-ValidationLayers build # 10741 failed. |
} | ||
ASSERT_NO_FATAL_FAILURE(InitState()); | ||
|
||
auto vkCmdBeginDebugUtilsLabelEXT = reinterpret_cast<PFN_vkCmdBeginDebugUtilsLabelEXT>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Can we use the templated version? As a bonus it will also check for null result.
auto vkCmdBeginDebugUtilsLabelEXT = GetDeviceProcAddr<PFN_vkCmdBeginDebugUtilsLabelEXT>("vkCmdBeginDebugUtilsLabelEXT");
auto vkCmdEndDebugUtilsLabelEXT = GetDeviceProcAddr<PFN_vkCmdEndDebugUtilsLabelEXT>("vkCmdEndDebugUtilsLabelEXT");
@@ -86,6 +86,9 @@ class Handle { | |||
const T &handle() const noexcept { return handle_; } | |||
bool initialized() const noexcept { return (handle_ != T{}); } | |||
|
|||
operator T() const noexcept { return handle(); } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💯
d463606
to
842d366
Compare
CI Vulkan-ValidationLayers build queued with queue ID 22449. |
CI Vulkan-ValidationLayers build # 10757 running. |
CI Vulkan-ValidationLayers build # 10757 passed. |
rebase on main to address CI issues |
Check to see that each "EndLabel" has a corresponding "BeginLabel." Closes KhronosGroup#5230.
842d366
to
9e0e300
Compare
CI Vulkan-ValidationLayers build queued with queue ID 22791. |
CI Vulkan-ValidationLayers build # 10767 running. |
CI Vulkan-ValidationLayers build # 10767 passed. |
New VUID added in KhronosGroup/Vulkan-ValidationLayers#5277 Bug: chromium:1420265 Change-Id: I139815fdfd90439c5a2ea79e467a60ba54ecbc0e Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4296799 Commit-Queue: Corentin Wallez <[email protected]> Reviewed-by: Corentin Wallez <[email protected]> Commit-Queue: Yuly Novikov <[email protected]> Commit-Queue: Roman Lavrov <[email protected]> Reviewed-by: Roman Lavrov <[email protected]>
Check to see that each "EndLabel" has a corresponding "BeginLabel."
Closes #5230.